home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / telecomm / sticpsrc.lzh / SOURCE.ARC / TRACE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-17  |  393 b   |  18 lines

  1. /* Definitions for packet dumping */
  2.  
  3. /* List of tracing functions for each interface. Entries are placed in
  4.  * this table by the driver at attach time
  5.  */
  6. extern int (*tracef[])();
  7.  
  8. #define TRACE_AX25    0
  9. #define TRACE_NETROM    1
  10. #define TRACE_ETHER    2
  11. #define TRACE_IP    3
  12. #define TRACE_APPLETALK 4
  13. #define NTRACE        5
  14.  
  15. #define TRACE_SENT    0
  16. #define TRACE_RECV    1
  17. #define TRACE_LOOP    2
  18.